1.1 – Unit Conversions


1.1.0 – Learning Objectives

By the end of this section you should be able to:

  1. Understand the importance of unit conversion.
  2. Understand the concept of a conversion factor.
  3. Convert a unit from one to the other.

1.1.1 – Introduction

Knowing how to convert units is vital to engineers. Improperly converted units could mean the difference between life and death. With Canada’s proximity to the USA, it is very important to learn how to convert from imperial to metric and vise versa. It is also important to know how to convert from one unit to another in the same system such as \(m^3\) to \(l\).


1.1.2 – Conversion Factors

Conversion factors are ratios between two expressions of the same quantity. For an example:

\[\frac{1 cm}{10 mm} \quad \text{(1 centimeter per 10 millimeters)}\]

or

\[\frac{1 kg^2}{1,000,000 g^2} \quad \text{(1 kilogram squared per 1,000,000 grams squared)}\]

or

\[\frac{1 m^3}{1,000,000,000 m m^3} \quad \text{(1 cubic meter per 1,000,000,000 cubic millimeters)}\]

1.1.3 – Converting Units

To convert a quantity from one unit to its equivalent of another unit, we will use conversion factors. For example, if we want to convert 7.2 km to meters, we would write:

\[7.2 km \times \frac{1,000 m}{1 km} = 7,200 m\]

As you can see, the original unit is km, the final unit is m, and the conversion factor is \(\frac{1,000m}{1km}\).


1.1.4 – Dimensional Homogeneity

Consider the equation

\[u = u_0 + gt\]

where the corrisponding units are

\[[m/s] = [m/s] + [m/s^2] \times [s]\]

Now lets inputed values for each of the varibles in the first equation.

\[45 \space \frac{m}{s} \neq 12 \space \frac{m}{s} + 9.81 \space \frac{m}{s^2} \cdot 3.36 \space min\]

You may ask why \(45 \neq 45\) and that is because the dimensions are not homogenous. The units are not consistent. The velocity and accelartation are measured in seconds, yet the time we used is minutes. To correct the formula, we must change the minutes to seconds.

\[45 \space \frac{m}{s} \neq 12 \space \frac{m}{s} + 9.81 \space \frac{m}{s^2} \cdot 3.36 \space s\]

1.1.5 – Problem Statement

Problem 1

Question

Suppose the average house in Vancouver uses 342 gallons of water per day. How many \(cm^3\) of water per second is used on average? What are your conversion factors?

Answer

In [1]:
water_use = 342 # gallons/day

seconds_per_day = 86400 # s/day
litres_per_gallon = 3.78541 # l/gallon
cub_m_per_litre = 0.001 # m^3/l
cub_c_per_cub_m = 1000000 # cm^3/m^3

water_use_1 = water_use*litres_per_gallon*cub_m_per_litre*cub_c_per_cub_m/seconds_per_day

print("The average house uses",water_use_1,"cm^3/s")
The average house uses 14.983914583333332 cm^3/s

The conversion factors are:

\[\frac{86400s}{1 day}\]
\[\frac{3.78541 litre}{1 gallon}\]
\[\frac{0.001 m^3}{1 litre}\]
\[\frac{1,000,000 cm^3}{1 m^3}\]

Written out, this would look like:

\[\frac{342 \space gallons }{1\space day} \cdot \frac{1\space day}{86400s} \cdot \frac{3.78541 litre}{1 gallon} \cdot \frac{0.001 m^3}{1 litre} \cdot \frac{1,000,000 cm^3}{1 m^3} = 14.983914583 \frac { cm^3}{s}\]

Problem 2

Question

Despite the odds, the Kinger-Sporgan pipeline is being built to no environmental impact, which will soon supply BC and Washington state with 40,001 barrels of oil biweekly (including weekends). As an employee of Dusty Oil in Vancouver, you keep in contact with your colleagues in the United States and update them on the amount of oil being supplied. Since they use metric and you use the imperial system, what is the amount of oil transported, in metric?

Note: Use 1 oil barrel = 35 imperial gallons. Not US gallons.

Answer

According to the back of our text,

\[1000 \space L = 220.83 \space \text{imperial gallons}\]

Let’s find out how many litres are in an imperial gallon first:

\[1000 \space L \space \div \space 220.83 \space \text{imperial gallons} = 4.5283 \space \frac{L}{\text{imperial gallons}}\]

Now we know that biweekly, the total amount of oil transported is:

\[40,001 \space barrels \space \times \space 35 \space 35 \space \frac{\text{imperial gallons}}{barrels} \times \space 4.5283 \space \frac{L}{\text{imperial gallons}} = 6339778 \space litres\]

Let’s find how many litres are transported in seconds. Since I don’t know how many seconds are in a fortnight off the top of my head:

\[14 \space days \space \times \space 24 \space \frac{hours}{day} \space \times \space 3600 \space \frac{seconds}{hour} = 1209600 \space seconds\]

Finally, you can report that the total amount of oil transported, in metric units, is:

\[6339778 \space litres \div 1209600 \space seconds = 5.241 \space \frac{L}{s}\]
In [ ]: